home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / string / strstr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-11  |  241 b   |  10 lines

  1. #include <string.h>
  2.  
  3. char *strstr(const char *s1,const char *s2)
  4. {
  5.     size_t l1=strlen(s1),l2=strlen(s2);int i;
  6.     if(!l2) return((char *)s1);
  7.     for(i=0;i<l1-l2;i++) if(!strncmp(s1,s2,l2)) return((char *)s1); else s1++;
  8.     return(0);
  9. }
  10.